Files
NativeScript/.eslintrc.json
2021-05-05 15:59:06 -07:00

18 lines
478 B
JSON

{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module",
"project": "tsconfig.eslint.json"
},
"plugins": ["@nativescript", "prettier"],
"extends": ["plugin:@nativescript/recommended", "prettier"],
"rules": {
"prettier/prettier": 2,
"@nativescript/no-nativescript-angular-imports": "warn",
"@nativescript/no-tns-core-modules-imports": "warn",
"@nativescript/no-duplicate-ns-imports": "warn"
}
}