Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
flycheck-clolyze
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Laps
flycheck-clolyze
Commits
2e8b72c7
Commit
2e8b72c7
authored
6 years ago
by
Daniel Laps
Browse files
Options
Downloads
Patches
Plain Diff
Add checker definition for clolyze
parents
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
README
+0
-0
0 additions, 0 deletions
README
flycheck-clolyze.el
+22
-0
22 additions, 0 deletions
flycheck-clolyze.el
with
22 additions
and
0 deletions
README
0 → 100644
+
0
−
0
View file @
2e8b72c7
This diff is collapsed.
Click to expand it.
flycheck-clolyze.el
0 → 100644
+
22
−
0
View file @
2e8b72c7
;;; flycheck-clolyze.el --- Add clolyze to flycheck
;;; Copyright (C) 2019 Daniel Laps
;;; Commentary:
;; This package adds Clolyze to flycheck. To use it, add
;; to your init.el:
;; (require 'flycheck-clolyze)
(
require
'flycheck
)
(
flycheck-define-checker
clolyze
"This checker uses clolyze to check clojure code."
:command
(
"lein"
"clolyze"
":linting"
)
:error-patterns
((
warning
line-start
(
file-name
)
":"
line
":"
column
":"
(
message
)
line-end
))
:modes
clojure-mode
)
(
add-to-list
'flycheck-checkers
'clolyze
)
(
provide
'flycheck-clolyze
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment