forked from kiwiirc/kiwiirc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
341fcc3
commit da0cf48
Showing
28 changed files
with
4,798 additions
and
4,203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
> 1% | ||
last 2 versions | ||
not ie <= 8 | ||
not dead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
build/*.js | ||
config/*.js | ||
tests/unit/coverage/ | ||
/dist/ | ||
/tests/coverage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,6 @@ yarn-error.log* | |
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,47 @@ | ||
module.exports = { | ||
extends: ['stylelint-config-standard', 'stylelint-config-recommended-vue'], | ||
extends: ['stylelint-config-standard', 'stylelint-config-standard-scss', 'stylelint-config-recess-order'], | ||
overrides: [ | ||
{ | ||
files: ['**/*.html'], | ||
files: ['**/*.vue', '**/*.html'], | ||
customSyntax: 'postcss-html', | ||
}, | ||
], | ||
rules: { | ||
'alpha-value-notation': null, | ||
'color-function-notation': null, | ||
'declaration-block-no-redundant-longhand-properties': null, | ||
'declaration-no-important': true, | ||
'indentation': 4, | ||
'media-feature-range-notation': null, | ||
'no-descending-specificity': null, | ||
'no-empty-first-line': null, | ||
'number-max-precision': null, | ||
'order/properties-order': null, | ||
'property-no-vendor-prefix': null, | ||
'scss/at-rule-no-unknown': [ | ||
true, | ||
{ | ||
ignoreAtRules: [ | ||
'each', | ||
'else', | ||
'extends', | ||
'for', | ||
'function', | ||
'if', | ||
'ignores', | ||
'include', | ||
'media', | ||
'mixin', | ||
'return', | ||
'use', | ||
|
||
// Font Awesome 4 | ||
'fa-font-path', | ||
], | ||
}, | ||
], | ||
'scss/double-slash-comment-empty-line-before': null, | ||
'scss/double-slash-comment-whitespace-inside': null, | ||
'selector-class-pattern': null, | ||
'shorthand-property-no-redundant-values': null, | ||
'string-quotes': 'single', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"recommendations": [ | ||
"vue.volar", | ||
"dbaeumer.vscode-eslint", | ||
"stylelint.vscode-stylelint", | ||
"rvest.vs-code-prettier-eslint" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"files.eol": "\n", | ||
"files.insertFinalNewline": true, | ||
"files.trimFinalNewlines": true, | ||
"files.trimTrailingWhitespace": true, | ||
"stylelint.validate": [ | ||
"vue", | ||
"css", | ||
"less", | ||
"sass", | ||
"scss", | ||
"postcss" | ||
], | ||
"search.exclude": { | ||
"**/dist": true | ||
}, | ||
"[javascript]": { | ||
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | ||
}, | ||
"[vue]": { | ||
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | ||
}, | ||
"[css]": { | ||
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint" | ||
}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.