mirror of
https://github.com/jwetzell/itsfiveoclockwhere.git
synced 2026-08-17 13:13:23 +00:00
19 lines
363 B
JavaScript
19 lines
363 B
JavaScript
module.exports = {
|
|
env: {
|
|
node: true,
|
|
commonjs: true,
|
|
es2021: true,
|
|
},
|
|
extends: ['airbnb', 'prettier'],
|
|
parserOptions: {
|
|
ecmaVersion: 'latest',
|
|
},
|
|
rules: {
|
|
'prefer-destructuring': 'off',
|
|
'no-bitwise': 'off',
|
|
'class-methods-use-this': 'off',
|
|
'import/extensions': 'off',
|
|
'import/no-relative-packages': 'off',
|
|
},
|
|
};
|