mirror of
https://github.com/jwetzell/psn-js.git
synced 2026-08-17 21:24:19 +00:00
20 lines
395 B
JavaScript
20 lines
395 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',
|
|
'no-param-reassign': 'off',
|
|
},
|
|
};
|