| 123456789101112131415161718192021222324252627282930313233343536 |
- {
- "env": {
- "browser": true,
- "es6": true
- },
- "extends": ["openlayers", "angular"],
- "globals": {
- "angular": "readonly"
- },
- "rules": {
- "angular/di": [
- "error",
- "array",
- {
- "matchNames": false
- }
- ],
- "angular/typecheck-array": "off",
- "angular/typecheck-date": "off",
- "angular/typecheck-function": "off",
- "angular/typecheck-number": "off",
- "angular/typecheck-object": "off",
- "angular/typecheck-string": "off"
- },
- "overrides": [
- {
- "files": [
- "**/*.spec.js"
- ],
- "env": {
- "jasmine": true,
- "angular/mocks": true
- }
- }
- ]
- }
|