-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1085 from Ilhasoft/staging
Staging
- Loading branch information
Showing
650 changed files
with
13,403 additions
and
34,040 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
> 1% | ||
last 2 versions | ||
not dead |
Empty file.
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,9 +1,7 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
[*.{js,jsx,ts,tsx,vue}] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 100 |
This file was deleted.
Oops, something went wrong.
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,51 +1,65 @@ | ||
module.exports = { | ||
root: true, | ||
parserOptions: { | ||
parser: 'babel-eslint' | ||
}, | ||
env: { | ||
browser: true, | ||
node: true, | ||
}, | ||
extends: ['plugin:vue/recommended', 'airbnb-base'], | ||
plugins: [ | ||
'vue' | ||
extends: [ | ||
'plugin:vue/essential', | ||
'@vue/airbnb', | ||
], | ||
parserOptions: { | ||
parser: 'babel-eslint', | ||
}, | ||
plugins: ['import'], | ||
settings: { | ||
'import/resolver': { | ||
webpack: { | ||
config: 'build/webpack.base.conf.js' | ||
} | ||
} | ||
alias: { | ||
map: [ | ||
['@', './src'], // default @ -> ./src alias in Vue, it | ||
// exists even if vue.config.js is not present | ||
/* | ||
*... add your own webpack aliases if you have them in | ||
vue.config.js/other webpack config file | ||
* if you forget to add them, eslint-plugin-import | ||
will not throw linting error in .vue | ||
* imports that contain the webpack alias you forgot to add | ||
*/ | ||
], | ||
extensions: ['.vue', '.json', '.js'], | ||
}, | ||
}, | ||
}, | ||
rules: { | ||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off', | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', | ||
'import/no-cycle': 'off', | ||
'arrow-parens': 'off', | ||
'import/order': 'off', | ||
'vue/no-unused-components': 'off', | ||
'no-unused-vars': 'off', | ||
'import/no-unresolved': 'off', | ||
'space-before-blocks': 'off', | ||
'object-curly-newline': 'off', | ||
'comma-dangle': 'off', | ||
'semi': 'off', | ||
'no-multiple-empty-lines': [2, { max: 2 }], | ||
'import/extensions': ['error', 'always', { | ||
js: 'never', | ||
vue: 'never' | ||
}], | ||
'no-param-reassign': ['error', { | ||
props: true, | ||
ignorePropertyModificationsFor: [ | ||
'state', | ||
'acc', | ||
'e' | ||
] | ||
vue: 'never', | ||
}], | ||
'import/no-extraneous-dependencies': ['error', { | ||
optionalDependencies: ['test/unit/index.js'] | ||
optionalDependencies: ['test/unit/index.js'], | ||
}], | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'import/no-cycle': ['never'], | ||
'vue/html-indent': [ | ||
'error', | ||
2, | ||
{ | ||
'ignores': [ | ||
'VElement[name=pre].children', | ||
'VElement[name=bh-highlighted-pre].children', | ||
'VElement[name=highlighted-code].children', | ||
], | ||
} | ||
], | ||
'import/no-webpack-loader-syntax': ['never'], | ||
} | ||
} | ||
}, | ||
overrides: [ | ||
{ | ||
files: [ | ||
'**/__tests__/*.{j,t}s?(x)', | ||
'**/tests/unit/**/*.spec.{j,t}s?(x)', | ||
], | ||
env: { | ||
jest: true, | ||
}, | ||
}, | ||
], | ||
}; |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1 @@ | ||
8.11 | ||
12.20.0 |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.