Skip to content
This repository was archived by the owner on Sep 17, 2023. It is now read-only.

bmazzarol/atom-plsql-linter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

atom-plsql-linter

PL/SQL linter for the Atom text editor based on the Trivadis PL/SQL COP.

Uses the PL/SQL Lint Server to provide linting for oracle files.

This version of the plugin is designed to run against the 1.0.2 version of the PL/SQL Lint Server.

Custom issue filters

A file with the name .oraclelint.json can be added to the project folder to define exclusions to issues you wish to ignore.

The format of the file is,

{
    "filters": [
        // global filters which apply to all files in the project
        {
            "codes": ["G-1200",...] // issue numbers
        },
        // file specific filter
        {
            "path": "/absolute/path/to/file/in/project/somefile.sql",
            "codes": ["G-2341",...], // issue numbers
            "includeGlobal": true // flag to indicate that the global filters should also be included
        }
    ]
}

About

PL/SQL linter for the Atom text editor based on the Trivadis PL/SQL COP.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published