mirror of
https://github.com/elyby/eslint-plugin.git
synced 2024-11-08 13:42:29 +05:30
27 lines
445 B
JavaScript
27 lines
445 B
JavaScript
module.exports = {
|
|
extends: [
|
|
'plugin:@elyby/config',
|
|
],
|
|
|
|
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',
|
|
},
|
|
},
|
|
],
|
|
};
|