You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
527 B

{
"globals": {
"window": true
},
"parser": "@typescript-eslint/parser",
"extends": ["airbnb-base", "plugin:prettier/recommended"],
"plugins": ["import", "@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": "error",
"strict": 0,
"import/extensions": [2, { "js": "never", "ts": "never" }],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".ts"]
}
}
}
}