Linter for ABAP, code must be serialized using abapGit.
Regarding versioning: semantic versioning is currently not followed, recommend fixing usage to a specific version
The code is in active development and some rules may not be described in documentation yet. In order to see the default configuration with all the rules run abaplint -d
. You may also save it as the current config in the root dir of your project abaplint -d > abaplint.json
- VS Code (source)
- Atom (source)
- GitHub App
- GitHub Actions
- GitLab Pipelines
- Bitbucket Pipelines
- Azure Pipelines
- Travis CI
- Code Climate Engine, todo
- ABAP in Eclipse, todo
For checking ABAP code inside the ABAP system use code inspector or ATC, also see project abapOpenChecks.
Node.js 10
npm install
npm test
-
Spaces required after string literals and before right parenthesis, following gives parser error
lo_obj->method( 'FOO').
-
CALL FUNCTION EXCEPTIONS must be well formed, eg not
CALL FUNCTION 'RFC_PING'
EXCEPTIONS
OTHERS.
CALL FUNCTION 'RFC_PING'
EXCEPTIONS = 2.
- Only single chaining, following gives parser error:
WRITE: bar: foo.