Initial MVP test
This commit is contained in:
19
eslint.config.mjs
Normal file
19
eslint.config.mjs
Normal file
@@ -0,0 +1,19 @@
|
||||
import globals from "globals";
|
||||
import pluginJs from "@eslint/js";
|
||||
import stylistic from '@stylistic/eslint-plugin';
|
||||
|
||||
export default [
|
||||
{
|
||||
languageOptions: {
|
||||
globals: globals.node
|
||||
},
|
||||
plugins: {
|
||||
'@stylistic': stylistic
|
||||
},
|
||||
rules : {
|
||||
'@stylistic/indent': ['error', 2],
|
||||
'no-useless-escape' : 'off'
|
||||
}
|
||||
},
|
||||
pluginJs.configs.recommended,
|
||||
];
|
||||
Reference in New Issue
Block a user