0

I would like to disable PropertySortOrder(https://github.com/brigade/scss-lint/tree/master/lib/scss_lint/linter#propertysortorder) in SCSS-Lint in Atom, though the documentation doesn't really specify how to do this.

It appears that I can disable this by file(https://github.com/brigade/scss-lint/tree/master/lib/scss_lint/linter#disablelinterreason), but I would quite like to set it my configuration.

Any ideas?

the Tin Man
  • 158,662
  • 42
  • 215
  • 303
Piet van Leeuwen
  • 319
  • 3
  • 12

1 Answers1

0

You can create a .scss-lint.yml file and add it to your home folder (or project folder, in case you want project-specific linting), then add your global settings there - in your case it should be

linters: PropertySortOrder: enabled: false

Atom's css linter is using the scss-lint gem, so it will pick up the default settings from the configuration file by default if no project-specific settings are specified.

Andrei Popa
  • 151
  • 1
  • 5