An open API service indexing awesome lists of open source software.

https://github.com/abhinavk99/codewall

VS Code extension that checks if code goes past your rulers
https://github.com/abhinavk99/codewall

codewall developer-tools ruler vscode vscode-extension

Last synced: 5 months ago
JSON representation

VS Code extension that checks if code goes past your rulers

Awesome Lists containing this project

README

          

# CodeWall

[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/abhinavk99/codewall/CodeWall%20CI?style=flat-square)](https://github.com/abhinavk99/codewall/actions)
[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/abhinavk99.codewall?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=abhinavk99.codewall)
[![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/abhinavk99.codewall?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=abhinavk99.codewall)
[![Visual Studio Marketplace Downloads](https://img.shields.io/visual-studio-marketplace/d/abhinavk99.codewall?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=abhinavk99.codewall)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
[![GitHub Repo stars](https://img.shields.io/github/stars/abhinavk99/codewall?style=flat-square)](https://github.com/abhinavk99/codewall)
[![GitHub](https://img.shields.io/github/license/abhinavk99/codewall?style=flat-square)](https://github.com/abhinavk99/codewall/blob/master/LICENSE)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)

VS Code extension that checks if code goes past your rulers. Install it [here](https://marketplace.visualstudio.com/items?itemName=abhinavk99.codewall)!

## Features

Shows warnings at the specific locations where code goes past your rulers.

![](https://raw.githubusercontent.com/abhinavk99/codewall/master/images/window.PNG)

![](https://raw.githubusercontent.com/abhinavk99/codewall/master/images/message.PNG)

## Settings

This extension has the following settings:

- `codewall.openProblemsPane`: Determines whether to open the problems pane to show warnings when lines cross rulers. Is true by default.

## Usage

Add a rulers using the `editor.rulers` setting (`Command Palette -> Preferences: Open Settings (JSON)`).

Valid Values:

```json
"editor.rulers": [
{"column": 90, "color": "#000000"},
{"column": 105, "color": "#ff0000"}
]
```

```json
"editor.rulers": [90, 105]
```

## CodeWall for Atom

Don't use VS Code? Try [CodeWall](https://github.com/Oceanwall/CodeWall) for Atom, made by Oceanwall!