mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
22 lines
404 B
JSON
22 lines
404 B
JSON
{
|
|
"root": true,
|
|
"ignorePatterns": ["projects/**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"parserOptions": {
|
|
"project": ["tsconfig.json"],
|
|
"createDefaultProgram": true
|
|
},
|
|
"rules": {
|
|
"semi": [1, "never"]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.html"],
|
|
"extends": ["plugin:@angular-eslint/template/recommended"],
|
|
"rules": {}
|
|
}
|
|
]
|
|
}
|