Skip to content

Commit

Permalink
style: prettier . -w
Browse files Browse the repository at this point in the history
  • Loading branch information
lzear committed Feb 27, 2024
1 parent 50b1bdd commit aa138c4
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ module.exports = {
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx', '.cjs']
}
extensions: ['.js', '.jsx', '.ts', '.tsx', '.cjs'],
},
},
},
parserOptions: {
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Deploy static content to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["master"]
branches: ['master']

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
Expand All @@ -17,7 +17,7 @@ permissions:

# Allow one concurrent deployment
concurrency:
group: "pages"
group: 'pages'
cancel-in-progress: true

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .ncurc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = {
reject: ['antd', 'javascript-lp-solver']
reject: ['antd', 'javascript-lp-solver'],
}
2 changes: 1 addition & 1 deletion demo/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
extends: ['next', 'next/core-web-vitals'],
parserOptions: {
ecmaVersion: 2022
ecmaVersion: 2022,
},
env: {
browser: true,
Expand Down
11 changes: 2 additions & 9 deletions demo/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
3 changes: 2 additions & 1 deletion tsconfig/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# `tsconfig`

These are base shared `tsconfig.json`s from which all other `tsconfig.json`'s inherit from.
These are base shared `tsconfig.json`s from which all other `tsconfig.json`'s
inherit from.

0 comments on commit aa138c4

Please sign in to comment.