Commit 523b88be authored by Antti Tanhuanpää's avatar Antti Tanhuanpää

Use relative paths for linters

parent f47f7997
......@@ -8,9 +8,9 @@ import termios
linters = {
'js': ('/usr/bin/eslint', '--stdin'),
'py': ('/usr/bin/flake8', '--ignore=E121,E123,E126,E266,E501,E704,E731', '-'),
'scss': ('/usr/bin/scss-lint', '--stdin-file-path', '{filename}', '-'),
'js': ('eslint', '--stdin'),
'py': ('flake8', '--ignore=E121,E123,E126,E266,E501,E704,E731', '-'),
'scss': ('scss-lint', '--stdin-file-path', '{filename}', '-'),
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment