Skip to content

Commit

Permalink
chore(lint): Remove any mentions of less (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
aifrak authored Jun 16, 2023
1 parent c037dba commit dab6a49
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,17 +38,17 @@
// HTML
"HTMLHint.vscode-htmlhint",

// CSS, SCSS, SASS, LESS
// CSS, SASS/SCSS
"stylelint.vscode-stylelint",

// Javascript:
// Javascript
"dbaeumer.vscode-eslint",

// Commit:
// Commit
"joshbolduc.commitlint",
"vivaxy.vscode-conventional-commits",

// Git:
// Git
"eamodio.gitlens",

// Github Actions
Expand Down
2 changes: 1 addition & 1 deletion .lintstagedrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"*.{ex,exs,eex,leex,fake1}":
- ./run lint:elixir:light

"*.{css,less,sass,scss}":
"*.{css,sass,scss}":
- ./run lint:css
- ./run lint:prettier

Expand Down
30 changes: 15 additions & 15 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,49 +11,49 @@
// Remote container
"ms-vscode-remote.remote-containers",

// HTML:
// HTML
"HTMLHint.vscode-htmlhint",
"bradgashler.htmltagwrap",
"formulahendry.auto-rename-tag",

// CSS, SCSS, SASS, LESS:
// CSS, SASS/SCSS
"stylelint.vscode-stylelint",
"gencer.html-slim-scss-css-class-completion",
"mrmlnc.vscode-scss",
"christian-kohler.path-intellisense",
"pranaygp.vscode-css-peek",

// Javascript:
// Javascript
"dbaeumer.vscode-eslint",
"xabikos.javascriptsnippets",
"nathanchapman.javascriptsnippets",

// EditorConfig:
// EditorConfig
"editorconfig.editorconfig",

// Tasks / Makefile targets
"spmeesseman.vscode-taskexplorer",

// Commit:
// Commit
"joshbolduc.commitlint",
"vivaxy.vscode-conventional-commits",

// Git:
// Git
"eamodio.gitlens",

// Github Actions:
// Github Actions
"cschleiden.vscode-github-actions",

// Gitignore
"codezombiech.gitignore",

// Dockerfile:
// Dockerfile
"exiasr.hadolint",

// Docker:
// Docker
"ms-azuretools.vscode-docker",

// Shell:
// Shell
"foxundermoon.shell-format",
"timonwong.shellcheck",
"sadeghpm.sql-snippets",
Expand All @@ -64,22 +64,22 @@
// YAML
"redhat.vscode-yaml",

// Markdown:
// Markdown
"davidanson.vscode-markdownlint",
"shd101wyy.markdown-preview-enhanced",
"yzhang.markdown-all-in-one",

// Formatters:
// Formatters
"esbenp.prettier-vscode",

// Comments:
// Comments
"stackbreak.comment-divider",
"exodiusstudios.comment-anchors",

// Cron jobs:
// Cron jobs
"tumido.cron-explained",

// Spellcheck:
// Spellcheck
"streetsidesoftware.code-spell-checker"
],

Expand Down
6 changes: 3 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,23 +189,23 @@
"detail": "Lint files handled by Prettier"
},
/* ———————————————————————————————————————————— */
/* CSS, SCSS, SASS, LESS */
/* CSS, SASS/SCSS */
/* ———————————————————————————————————————————— */
{
"label": "format:css",
"type": "shell",
"command": "./run",
"args": ["format:css "],
"problemMatcher": [],
"detail": "Format CSS, SCSS, SASS, LESS and any files containing CSS"
"detail": "Format CSS, SASS/SCSS files"
},
{
"label": "lint:css",
"type": "shell",
"command": "./run",
"args": ["lint:css "],
"problemMatcher": [],
"detail": "Lint CSS, SCSS, SASS, LESS and any files containing CSS"
"detail": "Lint CSS, SASS/SCSS files"
},
/* ———————————————————————————————————————————— */
/* HTML */
Expand Down
4 changes: 2 additions & 2 deletions scripts/run/css.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ function help:css {
cat <<EOF
CSS commands:
format:css Format CSS, SCSS, SASS and LESS files
lint:css Lint CSS, SCSS, SASS and LESS
format:css Format CSS, SASS/SCSS files
lint:css Lint CSS, SASS/SCSS files
EOF
}

Expand Down

0 comments on commit dab6a49

Please sign in to comment.