init
This commit is contained in:
17
client/stylelint.config.js
Normal file
17
client/stylelint.config.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/** @type {import('stylelint').Config} */
|
||||
export default {
|
||||
extends: [
|
||||
'stylelint-config-standard-scss',
|
||||
'stylelint-config-recommended-vue'
|
||||
],
|
||||
ignoreFiles: [
|
||||
'**/node_modules/**',
|
||||
'**/dist/**',
|
||||
'**/android/**'
|
||||
],
|
||||
rules: {
|
||||
'at-rule-no-unknown': null,
|
||||
'scss/at-rule-no-unknown': true,
|
||||
'no-empty-source': null,
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user