Skip to content

Commit

Permalink
Merge c2864bb into 38f44bb
Browse files Browse the repository at this point in the history
  • Loading branch information
IvayloG committed Nov 4, 2021
2 parents 38f44bb + c2864bb commit 51fbf5d
Show file tree
Hide file tree
Showing 55 changed files with 5,865 additions and 5,340 deletions.
51 changes: 51 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"prefix": "app",
"style": "kebab-case",
"type": "element"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"prefix": "app",
"style": "camelCase",
"type": "attribute"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {}
}
]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ speed-measure-plugin.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand Down
28 changes: 10 additions & 18 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,16 +95,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**",
"src/app/shared/**"
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
},
Expand Down Expand Up @@ -149,15 +144,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"projects/igniteui-angular-wrappers/tsconfig.lib.json",
"projects/igniteui-angular-wrappers/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**",
"src/app/shared/**"
"lintFilePatterns": [
"projects/igniteui-angular-wrappers/**/*.ts",
"projects/igniteui-angular-wrappers/**/*.html"
]
}
}
Expand All @@ -166,6 +157,7 @@
},
"defaultProject": "wrappers",
"cli": {
"analytics": false
"analytics": false,
"defaultCollection": "@angular-eslint/schematics"
}
}
Loading

0 comments on commit 51fbf5d

Please sign in to comment.