remix-project mirror
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.
 
 
 
 
 
remix-project/.eslintrc

34 lines
940 B

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint", "@nrwl/nx"],
"extends": "standard",
"rules": {
// "@typescript-eslint/explicit-member-accessibility": "off",
// "@typescript-eslint/explicit-function-return-type": "off",
// "@typescript-eslint/no-parameter-properties": "off",
// "@nrwl/nx/enforce-module-boundaries": [
// "error",
// {
// "enforceBuildableLibDependency": true,
// "allow": [],
// "depConstraints": [
// { "sourceTag": "*", "onlyDependOnLibsWithTags": ["*"] }
// ]
// }
// ]
},
"overrides": [
{
"files": ["*.tsx"],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
}
}
]
}