Skip to content

Commit 20fd88a

Browse files
authored
Merge pull request #462 from mattlean/v1.0.0-rc
v1.0.0
2 parents ba2d171 + 3f4bac9 commit 20fd88a

File tree

2,572 files changed

+623129
-236799
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,572 files changed

+623129
-236799
lines changed

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
build/
2+
coverage/
3+
dist/
4+
flow-typed/
5+
playwright-report/
6+
ljas-webpack/docs/

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: {
3+
es2024: true,
4+
node: true,
5+
},
6+
extends: ['eslint:recommended', 'prettier'],
7+
parserOptions: {
8+
ecmaVersion: 'latest',
9+
sourceType: 'module',
10+
},
11+
root: true,
12+
rules: {},
13+
overrides: [],
14+
}

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1 @@
1-
build/
2-
coverage/
3-
flow-typed/
41
node_modules/
5-
.eslintcache
6-
*.sublime-workspace
7-
stats.*.json
8-
yarn-error.log

.husky/install.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Skip Husky install in production and CI
2+
if (process.env.NODE_ENV === 'production' || process.env.CI === 'true') {
3+
process.exit(0)
4+
}
5+
const husky = (await import('husky')).default
6+
console.log(husky())

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm run lint-staged

.lintstagedrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "*": "prettier --ignore-unknown --write", "*.{js,jsx,ts,tsx}": "eslint" }

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
build/
2+
coverage/
3+
dist/
4+
flow-typed/
5+
playwright-report/
6+
test-results/
7+
ljas-webpack/docs/
8+
*.sublime-workspace
9+
package-lock.json

.prettierrc.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"importOrder": ["<THIRD_PARTY_MODULES>", "^[./]"],
3+
"importOrderSeparation": true,
4+
"importOrderSortSpecifiers": true,
5+
"plugins": ["@trivago/prettier-plugin-sort-imports"],
6+
"semi": false,
7+
"singleQuote": true,
8+
"tabWidth": 4
9+
}

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
3+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"editor.formatOnSave": true
3+
}

0 commit comments

Comments
 (0)