Skip to content
This repository has been archived by the owner on Apr 8, 2022. It is now read-only.

Commit

Permalink
chore: apply @solid-soda/scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkamyshev committed Apr 12, 2020
1 parent 51ceca7 commit 5d51291
Show file tree
Hide file tree
Showing 2,074 changed files with 59,915 additions and 1,580 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
version: 2.1
orbs:
yarn-berry: checkmoney/yarn-berry@1.0.0
npm: checkmoney/npm@1.0.0
npm: checkmoney/npm@1.1.0
workflows:
version: 2
build:
jobs:
- yarn-berry/local:
name: eslint
command: "lint:code"
command: 'lint:code'
filters:
branches:
only: /.*/
Expand All @@ -22,4 +22,4 @@ workflows:
tags:
only: /.*/
requires:
- "eslint"
- 'eslint'
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.yarn
node_modules
.pnp.js
.vscode
*.log
41 changes: 41 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"plugins": ["unicorn", "eslint-plugin-import-helpers"],
"extends": ["airbnb-base", "plugin:unicorn/recommended", "prettier"],
"rules": {
"no-undef": 0,
"unicorn/filename-case": 0,
"class-methods-use-this": 0,
"unicorn/prevent-abbreviations": 0,
"unicorn/prefer-query-selector": 0,
"unicorn/prefer-number-properties": 0,
"import/no-unresolved": 0,
"import/prefer-default-export": 0,
"import/extensions": 0,
"import-helpers/order-imports": [
"warn",
{
"newlinesBetween": "always",
"groups": [
"module",
["/^app/", "/^lib/", "/^config/", "/^src/", "/^ui/"],
["/^$/", "/^&/"],
["/^@shared/", "/^@app/", "/^@back/", "/^@front/"],
["parent", "sibling", "index"]
],
"alphabetize": {
"order": "ignore",
"ignoreCase": true
}
}
]
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"legacyDecorators": true
},
"ecmaVersion": 2018,
"sourceType": "module"
}
}
Loading

0 comments on commit 5d51291

Please sign in to comment.