{ "extends": "stylelint-config-standard", "plugins": [ "stylelint-scss" ], "rules": { "at-rule-empty-line-before": null, "at-rule-no-unknown": null, "selector-class-pattern": "^([a-z][a-z0-9]*)(-[a-z0-9]+)*$", "declaration-empty-line-before": null, "indentation": 4, "no-duplicate-selectors": null, "no-empty-source": null, "no-invalid-position-at-import-rule": null, "no-missing-end-of-source-newline": null, "number-leading-zero": "never", "scss/at-rule-no-unknown": true, "selector-pseudo-element-no-unknown": [ true, { "ignorePseudoElements": [ "ng-deep" ] } ] }, "ignoreFiles": [ "**/*.cs", "build/**/*.*", "node_modules/**/*.*" ] }