- Updated stylelint configuration to fix CSS formatting issues - Updated ESLint configuration to fix JavaScript issues - Added global variables to ESLint configuration
17 lines
339 B
JSON
17 lines
339 B
JSON
{
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"alpha-value-notation": "percentage",
|
|
"color-function-notation": "modern",
|
|
"font-weight-notation": "numeric",
|
|
"media-feature-range-notation": "context"
|
|
},
|
|
"ignoreFiles": [
|
|
"vendor/**",
|
|
"node_modules/**",
|
|
"build/**",
|
|
"dist/**",
|
|
"bin/**"
|
|
]
|
|
}
|