dashboardjavacloudcoapiotiot-analyticsiot-platformiot-solutionskafkalwm2mmicroservicesmiddlewaremqttnettyplatformsnmpthingsboardvisualizationwebsocketswidgets
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.
74 lines
1.6 KiB
74 lines
1.6 KiB
{
|
|
"root": true,
|
|
"ignorePatterns": [
|
|
"projects/**/*"
|
|
],
|
|
"overrides": [
|
|
{
|
|
"files": [
|
|
"*.ts",
|
|
"*.tsx"
|
|
],
|
|
"parserOptions": {
|
|
"project": [
|
|
"tsconfig.json"
|
|
],
|
|
"createDefaultProgram": true
|
|
},
|
|
"extends": [
|
|
"plugin:@angular-eslint/recommended",
|
|
"plugin:@angular-eslint/template/process-inline-templates"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/explicit-member-accessibility": [
|
|
"off",
|
|
{
|
|
"accessibility": "explicit"
|
|
}
|
|
],
|
|
"arrow-parens": [
|
|
"off",
|
|
"always"
|
|
],
|
|
"@angular-eslint/component-selector": [
|
|
"error",
|
|
{
|
|
"prefix": [
|
|
"tb"
|
|
]
|
|
}
|
|
],
|
|
"id-blacklist": [
|
|
"error",
|
|
"any",
|
|
"Number",
|
|
"String",
|
|
"string",
|
|
"Boolean",
|
|
"boolean",
|
|
"Undefined",
|
|
"undefined"
|
|
],
|
|
"import/order": "off",
|
|
"@typescript-eslint/member-ordering": "off",
|
|
"no-underscore-dangle": "off",
|
|
"@typescript-eslint/naming-convention": "off",
|
|
"jsdoc/newline-after-description": 0
|
|
}
|
|
},
|
|
{
|
|
"files": [
|
|
"*.html"
|
|
],
|
|
"extends": [
|
|
"plugin:@angular-eslint/template/recommended",
|
|
"plugin:tailwindcss/recommended"
|
|
],
|
|
"rules": {
|
|
"tailwindcss/no-custom-classname": "off",
|
|
"tailwindcss/migration-from-tailwind-2": "off",
|
|
"tailwindcss/enforces-negative-arbitrary-values": "off"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|