Skip to content

Commit

Permalink
refactor(structure): rename folders
Browse files Browse the repository at this point in the history
  • Loading branch information
nikkeyl committed Feb 13, 2024
1 parent ceaec6e commit 698e429
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions index.js → src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import CSSRules from './utilities/rules/css.js';
import SCSSRules from './utilities/rules/scss.js';
import CSSRules from './rules/css.js';
import SCSSRules from './rules/scss.js';

import plugins from './utilities/plugins.js';
import plugins from './utils/plugins.js';

export default {
extends: ['stylelint-config-standard-scss'],
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion utilities/rules/css.js → src/rules/css.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import REGEXP from '../regexps.js';
import REGEXP from '../utils/regexps.js';

const CSSRules = {
'color-named': 'never',
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion utilities/plugins.js → src/utils/plugins.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import propertiesOrder from './properties/order.js';
import propertiesOrder from '../properties/order.js';

const plugins = {
'prettier/prettier': true,
Expand Down
File renamed without changes.

0 comments on commit 698e429

Please sign in to comment.