-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing linting issues • minor config changes
- Loading branch information
1 parent
895e84e
commit 6dcfb37
Showing
15 changed files
with
128 additions
and
1,170 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npx lint-staged --concurrent false --relative |
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,20 @@ | ||
{ | ||
"./apps/**/*.ts(x)": [ | ||
"prettier --write", | ||
"eslint --fix" | ||
], | ||
"./libs/**/*.ts(x)": [ | ||
"prettier --write", | ||
"eslint --fix" | ||
], | ||
"./apps/**/*.html": [ | ||
"eslint --fix", | ||
"prettier --write" | ||
], | ||
"./libs/**/*.html": [ | ||
"eslint --fix", | ||
"prettier --write" | ||
], | ||
"./apps/**/*.css": ["prettier --write", "stylelint --write"], | ||
"./libs/**/*.css": ["prettier --write", "stylelint --write"] | ||
} |
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
Large diffs are not rendered by default.
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
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
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,14 +1,8 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-unused-vars | ||
import styles from './app.module.css'; | ||
|
||
import NxWelcome from './nx-welcome'; | ||
|
||
export function App() { | ||
return ( | ||
<div> | ||
<NxWelcome title="web-design-system" /> | ||
</div> | ||
); | ||
return <div>Hi</div>; | ||
} | ||
|
||
export default App; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.