Skip to content

Commit

Permalink
Merge pull request #8 from Bear29ers/feature/#2_add_sass_tailwind_dai…
Browse files Browse the repository at this point in the history
…syui

Feature/#2 Add sass, tailwind and daisyui(Sass、Tailwindcss、DaisyUIを追加する)
  • Loading branch information
Bear29ers committed Jun 24, 2023
2 parents 28a924f + e1ca2e6 commit ca8a6e0
Show file tree
Hide file tree
Showing 12 changed files with 2,132 additions and 195 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const config = {
],
'react/prop-types': 'off',
'react/jsx-uses-react': 'off',
'react-in-jsx-scope': 'off',
'react/react-in-jsx-scope': 'off',
'react-hooks/exhaustive-deps': 'warn',
'@typescript-eslint/ban-ts-comment': [
'error',
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('pretteir').Options} */
/** @type {import('pretteir').Config} */

const config = {
printWidth: 120,
Expand Down
23 changes: 23 additions & 0 deletions .stylelintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/** @types {import('stylelint').Configuration} */

const config = {
extends: ['stylelint-config-standard-scss', 'stylelint-config-recess-order'],
ignoreFiles: ['/node_modules', '/.next'],
rules: {
'no-empty-source': null,
'scss/at-rule-no-unknown': [
true,
{
ignoreAtRules: ['tailwind', 'apply', 'layer'],
},
],
'scss/function-no-unknown': [
true,
{
ignoreFunctions: ['theme', 'screen'],
},
],
},
};

module.exports = config;
7 changes: 3 additions & 4 deletions next.config.cjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
/** @type {import('next').NextConfig} */
const nextConfig =
{};

module.exports =
nextConfig;
const nextConfig = {};

module.exports = nextConfig;
Loading

0 comments on commit ca8a6e0

Please sign in to comment.