-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade to Node 20, EsLint 9, Tailwind 3, use ES Modules, remove Stylelint
- Loading branch information
1 parent
c1a3258
commit 01e0ae6
Showing
20 changed files
with
5,095 additions
and
24,445 deletions.
There are no files selected for viewing
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,5 +1,5 @@ | ||
/*----------------------------------------*\ | ||
Main stylesheet | ||
\*----------------------------------------*/ | ||
@import 'tailwindcss/base'; | ||
|
||
/* Here goes your project styles */ | ||
@import 'tailwindcss/components'; | ||
|
||
@import 'tailwindcss/utilities'; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1 @@ | ||
/*----------------------------------------*\ | ||
Main entry point | ||
\*----------------------------------------*/ | ||
|
||
// Style | ||
import '@/css/tailwind.css'; | ||
import '@/css/common.css'; | ||
|
||
// Load all icons to be included in the sprite | ||
// Uncomment line below once you include your first icon SVG | ||
// require.context('../icons'); | ||
import '../css/common.css'; |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'; | ||
import eslintPluginLiipLausanne from '@liip-lausanne/eslint-config'; | ||
|
||
export default [eslintPluginLiipLausanne, eslintPluginPrettierRecommended]; |
Oops, something went wrong.