mirror of
https://github.com/elyby/eslint-plugin.git
synced 2024-12-22 13:09:46 +05:30
28 lines
479 B
JavaScript
28 lines
479 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'plugin:@elyby/base',
|
|
'plugin:@elyby/typescript',
|
|
],
|
|
|
|
env: {
|
|
node: true,
|
|
es6: true,
|
|
},
|
|
|
|
settings: {
|
|
react: {
|
|
// Override these settings to avoid a wall of warnings
|
|
version: 'latest',
|
|
},
|
|
},
|
|
|
|
overrides: [
|
|
{
|
|
files: ['src/configs/*.ts'],
|
|
rules: {
|
|
'quote-props': 'off',
|
|
},
|
|
},
|
|
],
|
|
};
|