Skip to content

Commit

Permalink
feat(index.js): use stylelint-config-prettier plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
goester-team23 committed Feb 16, 2022
1 parent e79a648 commit a0141d3
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
'use strict';

module.exports = {
extends: 'stylelint-config-standard',
extends: [
'stylelint-config-standard',
'stylelint-config-prettier',
],
rules: {
/**
* Limit the number of ID selectors in a selector.
Expand Down Expand Up @@ -53,8 +56,6 @@ module.exports = {
* Disable stylistic issues as these rules will be deprecated or removed in the future
* See: https://stylelint.io/user-guide/rules/list/#stylistic-issues
*/
'max-empty-lines': null,
'string-quotes': null,
'value-keyword-case': null,
'function-name-case': null,
'custom-property-empty-line-before': null,
Expand All @@ -63,6 +64,8 @@ module.exports = {
'at-rule-empty-line-before': null,
'comment-empty-line-before': null,
'comment-whitespace-inside': null,
'max-empty-lines': null,
'string-quotes': null,
'color-hex-case': null,
'function-comma-newline-after': null,
'function-comma-newline-before': null,
Expand Down

0 comments on commit a0141d3

Please sign in to comment.