-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First refactor to use new setup and VLT
- Loading branch information
Showing
370 changed files
with
40,254 additions
and
40,556 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
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,8 +1,6 @@ | ||
*.log | ||
build | ||
cache | ||
cypress | ||
node_modules | ||
omelette | ||
Dockerfile | ||
.yarn/cache | ||
*.log | ||
node_modules |
This file was deleted.
Oops, something went wrong.
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,92 +1,12 @@ | ||
logs | ||
*.log | ||
npm-debug.log* | ||
.DS_Store | ||
|
||
coverage | ||
|
||
# Node | ||
node_modules | ||
coverage | ||
jsdoc | ||
webpack-assets.json | ||
webpack-stats.json | ||
npm-debug.log | ||
dist | ||
junit.xml | ||
eslint.xml | ||
yarn-error.log | ||
build | ||
|
||
# Other | ||
.DS_Store | ||
.idea | ||
lighthouse-report.html | ||
.#* | ||
.*project | ||
.settings/ | ||
.vscode | ||
*~ | ||
|
||
# Python | ||
/api/.installed.cfg | ||
/api/.mr.developer.cfg | ||
/api/bin/ | ||
/api/develop-eggs/ | ||
/api/eggs/ | ||
/api/include/ | ||
/api/lib/ | ||
/api/lib64/ | ||
/api/notebook/env/ | ||
/api/parts/ | ||
/api/share/python-wheels/ | ||
/api/src/ | ||
/api/var/ | ||
/api/venv/ | ||
/bin/ | ||
/lib/ | ||
.Python | ||
include | ||
pip-selfcheck.json | ||
pyvenv.cfg | ||
share | ||
|
||
# locales | ||
locales/*.json | ||
|
||
# Tests | ||
/tests/bin | ||
/tests/develop-eggs | ||
/tests/parts | ||
/tests/.installed.cfg | ||
*.pyc | ||
geckodriver.log | ||
log.html | ||
output.xml | ||
report.html | ||
selenium-screenshot-*.png | ||
/selenium/ | ||
cypress/videos/ | ||
cypress/screenshots | ||
|
||
# Local environment setup | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# generic | ||
data | ||
omelette | ||
|
||
# build | ||
public/critical.css | ||
src/addons/* | ||
/cache | ||
|
||
# yarn 3 | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
acceptance/cypress/videos/ | ||
acceptance/node_modules | ||
.storybook-build | ||
build | ||
core | ||
node_modules | ||
results | ||
yarn.lock |
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,16 @@ | ||
.vscode/ | ||
.history | ||
logs | ||
*.log | ||
npm-debug.log* | ||
.DS_Store | ||
*.swp | ||
yarn-error.log | ||
|
||
node_modules | ||
dockerfiles | ||
acceptance | ||
build | ||
dist | ||
yarn.lock | ||
.storybook |
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,6 @@ | ||
public-hoist-pattern[]=*eslint* | ||
public-hoist-pattern[]=*prettier* | ||
public-hoist-pattern[]=*stylelint* | ||
public-hoist-pattern[]=*cypress* | ||
public-hoist-pattern[]=*process* | ||
public-hoist-pattern[]=*parcel* |
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,27 @@ | ||
repos: | ||
- repo: local | ||
hooks: | ||
- id: prettier | ||
name: prettier | ||
entry: pnpm exec prettier --write | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [file] | ||
- id: eslint | ||
name: eslint | ||
entry: pnpm exec eslint --max-warnings=0 --fix | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [file] | ||
- id: stylelint | ||
name: stylelint | ||
entry: pnpm exec stylelint --fix | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(css|scss|less)$' | ||
types: [file] | ||
- id: i18n | ||
name: i18n | ||
entry: make ci-i18n | ||
language: system | ||
files: '^packages/.*/src/.*/?.*.(js|jsx|ts|tsx)$' | ||
types: [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,2 +1,3 @@ | ||
src/**/CHANGELOG.md | ||
src/**/README.md | ||
.storybook | ||
CHANGELOG.md | ||
README.md |
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,12 @@ | ||
{ | ||
"trailingComma": "all", | ||
"singleQuote": true, | ||
"overrides": [ | ||
{ | ||
"files": "*.overrides", | ||
"options": { | ||
"parser": "less" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.