Skip to content

Releases: PaulRosset/linter-farch

Template and Recursive Features added!!

24 Jun 09:50
Compare
Choose a tag to compare
  • Recursivity added in order to test multiple sub-directory easily
  • Template, writting regex can be boring or just difficult, that's why I integrated some pre-defined template of regex.
    For example:
{
  "farch": {
     "test/testFolder": ["CAMEL_CASE_JS", "[a-z]*"]
  }
}
  • Glob integration, add the possibility to match and select only a group of file desired
    For example:
{
  "farch": {
     "test/testFolder/*.js": ["CAMEL_CASE_JS", "[a-z]*"]
  }
}

To select only the .js file in the directory test/testFolder/.