-
- Downloads
Merge branch 'css-style-guide' into 'master'
CSS style guide Working towards what was discussed in #13552, this adds the [SCSS Linter gem](https://github.com/brigade/scss-lint) for style guide conformity in CI. TODO: - [x] Agree on and write SCSS Style Guide Documentation. - [x] Document the `scss-lint` config file. - [x] Figure out how best to run this in CI, right now it's taking longer than I would think it should. - [x] Use CSSComb for auto-correction (Maybe just include a CSSComb config file and have developers run the node package manually if they're interested in using it?). My logic for not using CSSComb in the first place is that, AFAIK, we don't currently require Node/NPM, even in the dev environment. Maybe I'm wrong about that? `scss-lint` is a Ruby implementation of a similar concept, but it doesn't include autocorrect. Is there a way we can run get GitLab CI to run `scss-lint` without having to put together the full GitLab application? Seeing as it's just static analysis, it seems like a waste of time/resources. /cc @jschatz1 @rspeicher See merge request !3069
No related branches found
No related tags found
Showing
- .csscomb.json 16 additions, 0 deletions.csscomb.json
- .gitlab-ci.yml 8 additions, 0 deletions.gitlab-ci.yml
- .scss-lint.yml 158 additions, 0 deletions.scss-lint.yml
- CONTRIBUTING.md 2 additions, 0 deletionsCONTRIBUTING.md
- Gemfile 1 addition, 0 deletionsGemfile
- Gemfile.lock 4 additions, 0 deletionsGemfile.lock
- doc/development/scss_styleguide.md 194 additions, 0 deletionsdoc/development/scss_styleguide.md
- lib/tasks/scss-lint.rake 10 additions, 0 deletionslib/tasks/scss-lint.rake
.csscomb.json
0 → 100644
.scss-lint.yml
0 → 100644
Loading
| Loading
| @@ -283,6 +283,7 @@ group :development, :test do |
gem 'spring-commands-teaspoon', '~> 0.0.2' | ||
gem 'rubocop', '~> 0.35.0', require: false | ||
gem 'scss_lint', '~> 0.47.0', require: false | ||
gem 'coveralls', '~> 0.8.2', require: false | ||
gem 'simplecov', '~> 0.10.0', require: false | ||
gem 'flog', require: false | ||
Loading
| Loading
|
doc/development/scss_styleguide.md
0 → 100644
lib/tasks/scss-lint.rake
0 → 100644
Please register or sign in to comment