mirror of
https://github.com/uetchy/namae.git
synced 2025-03-16 20:20:38 +09:00
18 lines
432 B
JavaScript
18 lines
432 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint'],
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:@typescript-eslint/recommended-requiring-type-checking',
|
|
'plugin:react/recommended',
|
|
'prettier/@typescript-eslint',
|
|
],
|
|
};
|