mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-09 04:21:21 +00:00
17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
|
|
plugins: ['@typescript-eslint'],
|
|
ignorePatterns: ['*.cjs', 'dist/**/*'],
|
|
overrides: [],
|
|
env: {
|
|
es2017: true,
|
|
node: true
|
|
},
|
|
rules: {
|
|
'no-empty-function': 'off',
|
|
'@typescript-eslint/no-empty-function': ['error', { allow: ['arrowFunctions'] }]
|
|
}
|
|
};
|