A work-in-progress SQL parser written in TypeScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. {
  2. "defaultSeverity": "error",
  3. "extends": ["tslint:recommended"],
  4. "jsRules": {},
  5. "rules": {},
  6. "rulesDirectory": [],
  7. "linterOptions": {
  8. "exclude": ["src/index.ts"]
  9. },
  10. "overrides": [
  11. {
  12. "files": ["*.test.ts"],
  13. "rules": {
  14. "no-unused-expressions": "off"
  15. }
  16. }
  17. ]
  18. }