Skip to content

Commit

Permalink
Merge pull request #226 from emulsify-ds/compound-support
Browse files Browse the repository at this point in the history
  • Loading branch information
ModulesUnraveled authored Dec 23, 2021
2 parents aeda740 + ae04392 commit f456f84
Show file tree
Hide file tree
Showing 255 changed files with 55,935 additions and 11,955 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/*.min.js
node_modules
9 changes: 6 additions & 3 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
root: true
extends:
- airbnb
- prettier
- airbnb-base
- plugin:security/recommended
- plugin:prettier/recommended
plugins:
- security
- prettier
- jest
env:
Expand All @@ -15,7 +16,9 @@ globals:
it: true
describe: true
Drupal: true
parser: '@babel/eslint-parser'
parser: "@babel/eslint-parser"
parserOptions:
requireConfigFile: false
rules:
strict: 0
import/no-extraneous-dependencies: 0
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
dist

# Yarn/NPM
node_modules/
yarn.lock
node_modules

# Storybook
.out
Expand All @@ -16,7 +15,7 @@ yarn.lock

# Composer
composer.lock
/vendor/
vendor

# Jest
.coverage
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm run lint-staged ; npm run lint
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.15.1
16.10
4 changes: 4 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
1 change: 1 addition & 0 deletions .stylelintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
33 changes: 33 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"extends": [
"stylelint-config-standard",
"stylelint-config-prettier"
],
"plugins": [
"stylelint-prettier"
],
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"content",
"each",
"else",
"extend",
"forward",
"function",
"if",
"import",
"include",
"mixin",
"return",
"use"
]
}
],
"number-leading-zero": "always",
"number-no-trailing-zeros": true,
"prettier/prettier": true
}
}
3 changes: 1 addition & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ module.exports = (api) => {
'@babel/preset-env',
{
corejs: 3,
useBuiltIns: 'usage',
},
],
'minify',
['minify', { builtIns: false }],
];

const comments = false;
Expand Down
39 changes: 0 additions & 39 deletions components/00-base/00-defaults/_01-variables.scss

This file was deleted.

68 changes: 0 additions & 68 deletions components/00-base/00-defaults/_02-breakpoints.scss

This file was deleted.

68 changes: 0 additions & 68 deletions components/00-base/00-defaults/_03-mixins.scss

This file was deleted.

23 changes: 0 additions & 23 deletions components/00-base/01-colors/_00-colors-vars.scss

This file was deleted.

Loading

0 comments on commit f456f84

Please sign in to comment.