This repository has been archived by the owner on May 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 336
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 #386 from DivanteLtd/develop
Release v1.11
- Loading branch information
Showing
147 changed files
with
12,879 additions
and
6,983 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,58 @@ | ||
module.exports = { | ||
root: true, | ||
env: { jest: true, node: true, es6: true}, | ||
parserOptions: { | ||
parser: '@typescript-eslint/parser', | ||
ecmaVersion: 2018, | ||
sourceType: 'module' | ||
}, | ||
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style | ||
extends: [ | ||
'standard', | ||
'plugin:@typescript-eslint/recommended' | ||
], | ||
plugins: ['vue-storefront', '@typescript-eslint'], | ||
// add your custom rules here | ||
rules: { | ||
'@typescript-eslint/no-var-requires': 1, | ||
'@typescript-eslint/indent': ['error', 2], | ||
'@typescript-eslint/camelcase': 0, | ||
semi: 'off', | ||
'@typescript-eslint/semi': 0, | ||
'@typescript-eslint/member-delimiter-style': ['error', { 'multiline': { 'delimiter': 'comma', 'requireLast': false }, 'singleline': { 'delimiter': 'comma' } }], | ||
'@typescript-eslint/no-empty-interface': 1, | ||
'@typescript-eslint/no-use-before-define': 1, | ||
'@typescript-eslint/no-explicit-any': 0, | ||
'@typescript-eslint/class-name-casing': 1, | ||
'@typescript-eslint/no-unused-vars': 0, | ||
'@typescript-eslint/explicit-function-return-type': 0, | ||
'@typescript-eslint/no-var-requires': 0, | ||
'handle-callback-err': 1, | ||
'prefer-promise-reject-errors': 0, | ||
'import/no-duplicates': ['warning'], | ||
// allow paren-less arrow functions | ||
'arrow-parens': 0, | ||
'prefer-arrow-callback': 1, | ||
// allow async-await | ||
'generator-star-spacing': 0, | ||
// allow debugger during development | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0, | ||
'no-restricted-imports': [2, { paths: ['lodash-es'] }], | ||
'vue-storefront/no-corecomponent-import': 'error', | ||
'vue-storefront/no-corecomponent': 'error', | ||
'vue-storefront/no-corepage-import': 'error', | ||
'vue-storefront/no-corepage': 'error', | ||
'no-console': 0, | ||
'no-unused-vars': 1 | ||
}, | ||
overrides: [ | ||
{ | ||
// @todo check if this is closed https://github.com/typescript-eslint/typescript-eslint/issues/342 | ||
// This is an issue with interfaces so we need to wait until it fixed. | ||
files: ['core/**/*.ts'], | ||
rules: { | ||
'no-undef': 1 | ||
} | ||
} | ||
] | ||
}; |
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,31 @@ | ||
name: Node CI | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [10.x, 12.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: yarn lint | ||
run: | | ||
yarn | ||
yarn lint | ||
env: | ||
CI: true | ||
- name: yarn build | ||
run: | | ||
yarn build | ||
env: | ||
CI: true | ||
|
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
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
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ module.exports = { | |
[ | ||
'@babel/preset-env', { | ||
targets: { | ||
node: "8" | ||
node: "10" | ||
} | ||
} | ||
] | ||
|
Empty file.
Oops, something went wrong.