Skip to content

Commit

Permalink
Merge pull request hatemhosny#165 from hatemhosny/improve-playground
Browse files Browse the repository at this point in the history
Improve playground
  • Loading branch information
hatemhosny authored Aug 26, 2024
2 parents daa6868 + 81f30ff commit ca0db9e
Show file tree
Hide file tree
Showing 47 changed files with 828 additions and 412 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ vendor_modules
**/*.json
scripts
python
website/.docusaurus
website/docs/api
website/static
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,19 @@
"deploy": "gh-pages -m \"[ci skip] Updates\" -d website/build",
"fix": "run-s fix:*",
"fix:prettier": "prettier src --ignore-path .eslintignore --write",
"fix:prettier-website": "prettier website --ignore-path .eslintignore --write",
"fix:eslint": "eslint --fix --ext js,jsx,ts,tsx src",
"fix:eslint-website": "eslint --fix --ext js,jsx,ts,tsx website",
"fix:stylelint": "stylelint --fix \"src/**/*.{css,scss}\"",
"fix:stylelint-website": "stylelint --fix \"website/**/*.{css,scss}\"",
"test": "run-s test:*",
"test:unit": "jest src",
"test:lint": "run-s lint:*",
"test:bundlewatch": "bundlewatch --config .bundlewatch.config.json",
"lint:prettier": "prettier src --ignore-path .eslintignore --list-different",
"lint:prettier-website": "prettier website --ignore-path .eslintignore --list-different",
"lint:eslint": "eslint --ext js,jsx,ts,tsx src",
"lint:eslint-website": "eslint --ext js,jsx,ts,tsx website",
"lint:stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:stylelint-website": "stylelint \"website/**/*.{css,scss}\"",
"postinstall": "cd website && npm install",
Expand Down
8 changes: 4 additions & 4 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.jsx",
"docs/**/*.ts",
"docs/**/*.tsx",
"docs/**/*.js",
"docs/**/*.jsx",
"website/**/*.ts",
"website/**/*.tsx",
"website/**/*.js",
"website/**/*.jsx",
"storybook/**/*.ts",
"storybook/**/*.tsx",
"storybook/**/*.js",
Expand Down
Loading

0 comments on commit ca0db9e

Please sign in to comment.